-
Notifications
You must be signed in to change notification settings - Fork 12.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Simplify Command::spawn (no semantic change) #83170
Conversation
r? @kennytm (rust-highfive has picked a reviewer for you, use r? to override) |
Note that I based this PR on the branch from #83121 , to avoid a conflict. |
CI not running? 🤔 |
I'd like to hold off on this one until #81825 gets in, since the two will likely conflict and that one has been waiting longer. I'll rebase this after that goes in. |
I also don't mind rebasing #81825 if you want to merge this first. |
@voidc I appreciate that, but this is a minor cleanup and I'm much more interested in the pidfd work. |
This minimizes the size of an unsafe block, and allows outdenting some complex code.
ede3431
to
68dbdfb
Compare
Since #81825 seems to be blocked by an LLVM codegen issue, I'd like to go ahead and merge this. |
@bors r+ |
📌 Commit 68dbdfb has been approved by |
☀️ Test successful - checks-actions |
This minimizes the size of an unsafe block, and allows outdenting some
complex code.